Scroll Progress Bar

Flash Cards


What is the purpose of an enum in C?


Constants

How are enum constants defined in C?


Values

What is the default type of an enum in C?


Int

How can you access enum constants in C?


Name

What is a function in C?


Subroutine

What is the keyword used to define a function in C?


Function

What is the return type of a function that doesn't return any value in C?


Void

What is used to call a function in C?


Invoke

What is a function that calls itself in C?


Recursive

What is recursion in C?


Function

What is a base case in recursion?


Terminating

What is a recursive function's calling itself?


Recursion

What is a recursive function's intermediate result?


Subproblem

What is a recursive function's control stack?


Call

What is the storage class that allocates memory for a variable once for the entire program?


Static